Passed
Pull Request — master (#442)
by
unknown
06:24
created

HtmlColumn.toString   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
1
export class HtmlColumn {
2
  constructor(public readonly text: string, public readonly html: string) {}
3
4
  public toString() {
5
    return this.text;
6
  }
7
}
8